home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ppp.prerm < prev    next >
Text File  |  2008-10-15  |  231b  |  12 lines

  1. #!/bin/sh -e
  2.  
  3. # If we are removing ppp we have to stop all ppp's
  4.  
  5. if [ "$1" = remove ]; then
  6.   echo -n "Stopping all PPP connections..."
  7.   start-stop-daemon --stop --oknodo --quiet --exec /usr/sbin/pppd || true
  8.   echo "done."
  9. fi
  10.  
  11.  
  12.